bedaddf0572ea4e61f452509a45e7d0c77df6472,library/src/main/java/eightbitlab/com/blurview/RenderScriptBlur.java,RenderScriptBlur,destroy,#,71

Before Change


    public void destroy() {
        blurScript.destroy();
        renderScript.destroy();
        outAllocation.destroy();
    }

    @Override

After Change


    public void destroy() {
        blurScript.destroy();
        renderScript.destroy();
        if (outAllocation != null) {
            outAllocation.destroy();
        }
    }